Maven引入外部jar

问题

自己本地的jar包, maven服务器上没有,引入本地的jar包,现在项目的resource目录下新建lib文件夹,然后将你本地的jar包copy到里面。

解决

在maven的pom.xml配置如下:

1
2
3
4
5
6
7
8
9
<dependencies>
<dependency>
<groupId>novaplanet.net</groupId>
<artifactId>javapns-jdk16-163</artifactId>
<version>1.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/javapns-jdk16-163-1.2.jar</systemPath>
</dependency>
</dependencies>

build插入下面配置:

1
2
3
4
5
6
7
8
9
10
11
12

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
继开 wechat
欢迎加我的微信,共同交流技术